@charset "UTF-8";
/* CSS Document */

#center{
	text-align:center; /* Align Text-center */
	font-size:45px; /* Set font-size to 45px */
	letter-spacing:.1em;
}

#one{
	width:650px; /* Set width to 650px*/
	text-align:center; /* Align text center */
	margin:auto; /* Set margin auto */
	
}

#two{
	height:90px;
	width:440px;
	text-align:center;
	margin:auto;
}


#three{
	height:20px; /* Set height to 20px*/
	width:440px; /* Set width to 440px */
	text-align:center; /* Set align text center */
	margin-left:15%; 
}

table{
	  border:solid black; /* Set table to solid-black */
	  border-collapse:collapse; /* Collapse border of table */
	  width:60%;
	  margin:auto;
    }
	
table,td{
	  border:1px solid black;
	  border-collapse:collapse;
	  padding:15px;

	 
    }	
	

h1{
	text-align:center; /*Align text center */
}

html, body {
	height: 100%; margin: 0
}
   
#sidebar {
  position: fixed; /* Fixed position of sidebar */
  top: 40px;
  left: 16px;
  width: 200px;
  border-right:1px solid #aaa;
}   